home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 November: Tool Chest / Dev.CD Nov 96 TC / Dev.CD Nov 96 TC.toast / Sample Code / Snippets / Development Tools & Languages / Shared Lib. Mgr. C++ / Sources / ProcessNV.cp < prev    next >
Encoding:
Text File  |  1992-08-30  |  1.2 KB  |  42 lines  |  [TEXT/MPS ]

  1. /* _________________________________________________________________________________________________________ //
  2.   Copyright © 1992 Apple Computer, Inc. All rights reserved.
  3.   Macintosh Developer Technical Support.C++ Macintosh Toolbox Framework.
  4.   Date: Monday, August 10, 1992 1:17:29
  5.   Revision comments are at the end of this file.
  6.   ---
  7.   TProcess is a Process Manager class.
  8.   ProcessNV.cp contains the SLM constructor/destructor and other non-virtual function information.
  9.   _________________________________________________________________________________________________________ */
  10.  
  11.  
  12. // Include files
  13. #ifndef _PROCESS_
  14. #include "Process.h"
  15. #endif
  16.  
  17. #ifndef __LIBRARYMANAGERUTILITIES__
  18. #include <LibraryManagerUtilities.h>
  19. #endif
  20.  
  21. // Library statements
  22. #pragma library id="slm:dtsl$", version=00.00.01
  23. #pragma class name=TProcess, id=kTProcessID, parent=kTDynamicID, flags=newobject
  24.  
  25.  
  26. // _________________________________________________________________________________________________________ //
  27. // TRandom class member function implementations
  28.  
  29. //    CONSTRUCTORS & DESTRUCTORS
  30.  
  31. TProcess::TProcess()
  32. // Constructor, we are not doing anything inside this one just now.
  33. {
  34. }
  35.  
  36.  
  37. TProcess::~TProcess()
  38. // Destructor, we are not doing anything inside this one just now.
  39. {
  40. }
  41.  
  42.